跳到主要内容

Fortran if 语句

if (logical_expression) then
...
else if (logical_expression) then
...
else ! 可省
...
end if
! 当模块只有一行的时候
if () ...